How does the Token-Based Authentication work ?
Digital transformation brings security concerns for users to protect their identity from bogus eyes. According to US Norton, on average 8 lakh accounts are being hacked every year. There is a demand for high-security systems and cybersecurity regulations for authentication....
read more
How to add Snap to alignment feature in FlatList in React Native ?
React Native is used to creating apps for Both Android and iOS platforms. It allows you to use a single codebase for both platforms. In React Native, the FlatList component shows similarly structured data in a scrollable list. It is the best option if you have a large list to render. FlatList component only renders those elements which are currently displaying on the screen and not all. As the user scrolls down, it renders more elements from the list. It provides better performance than a ScrollView....
read more
How to retrieve data from MySQL database using PHP ?
There are steps to understand for retrieving the data from the MySQL database....
read more
How to iterate over Object in Angular ?
Objects consist of a set of key-value pairs, which are known as Properties. All Properties are named in JavaScript objects and the key part represents the Property name, while the value part represents the property Value. Each element(key-value pair) of the object can be utilized to perform a specific action, as it permits access and manipulation of the properties and values stored in that object. In this article, we will see how to Iterate over object in Angular....
read more
How to make a Post request from frontend in react-native ?
The POST method is used to send data to the server to create a new resource or modify an existing resource on the server. we cannot make a POST request by using a web browser, as web browsers only directly support GET requests....
read more
When to use a Class Component over a Function Component in ReactJS ?
Introduction: Components are the building blocks of creating user interfaces in React. They allow us to develop re-usable and independent bits of inter-linked components which together form the whole web interface. React has 2 different types of components:...
read more
How to pass value between Screens in React Native ?
React Native is use to create cross-platform applications. One of the biggest drawbacks of React Native is that it doesn’t come with any built-in navigation system. We have to use other libraries to implement navigation in React Native. React Navigation library is widely used with React Native to implement various types of navigation systems....
read more
SweetAlert2 (Advance version of SweetAlert)
Sweet Alert is used to make an alert box more attractive and easier to design. Sweet JS Provides easy methods to design and add a lot of functionality to the alert box of the website by just calling the function of sweet alert (in short SWAL())....
read more
How to set Background Image in react-native ?
React Native is a framework developed by Facebook for creating native-style apps for iOS & Android under one common language, JavaScript. Initially, Facebook only developed React Native to support iOS. However, with its recent support of the Android operating system, the library can now render mobile UIs for both platforms....
read more
How to create a custom error page in Next.js ?
NextJS is a react based framework which gives a developer all the features needed for production. Next.js is a react based framework. It has powers to Develop beautiful Web application for different platform like Windows, Linux and mac....
read more
How to use getStaticPaths in Next.js ?
We can pre-render a page in Next.js all through the form interaction. We make all of the HTML code and information early. The server then, at that point, reserves the data....
read more
How to open datetimepicker on textbox click using jQuery ?
In this article, we will see how to set a datetimepicker to select a date and time on a textbox click or input element click using jQuery. Below approaches can be used to accomplish this task:...
read more